home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / pipes.zip / CLIENT.MAK < prev    next >
Makefile  |  1993-11-24  |  803b  |  33 lines

  1. # *********************************************************
  2. #  makefile: for client
  3. #
  4. #
  5. # *********************************************************
  6.  
  7.  
  8. # Nmake macros for building Windows 32-Bit applications
  9.  
  10. !include <ntwin32.mak>
  11.  
  12. proj = client
  13.  
  14. all: $(proj).exe
  15.  
  16. # Update the resource if necessary
  17.  
  18. $(proj).rbj: $(proj).rc $(proj).h $(proj).dlg
  19.     $(rc) $(rcvars) -r -fo $(proj).res $(proj).rc
  20.     cvtres -$(CPU) $(proj).res -o $(proj).rbj
  21.  
  22. # Update the object file if necessary
  23.  
  24. $(proj).obj: $(proj).c
  25.     $(cc) $(cdebug) $(cflags) $(cvars) $(proj).c
  26.  
  27. # Update the executable file if necessary, and if so, add the resource 
  28. # back in
  29.  
  30. $(proj).exe: $(proj).obj $(proj).rbj
  31.     $(link) $(ldebug) $(guilflags) $(proj).obj $(proj).rbj \
  32.        $(guilibs) -out:$(proj).exe
  33.